home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / vbcc-68k-src / machines / amiga68k / libsrc / amigalib / pool.h < prev    next >
C/C++ Source or Header  |  1999-01-01  |  351b  |  20 lines

  1. #include <exec/lists.h>
  2. #include <exec/memory.h>
  3. #include <exec/execbase.h>
  4. #include <proto/exec.h>
  5.  
  6. /*
  7. **     our PRIVATE! memory pool structure
  8. ** (_NOT_ compatible with original amiga.lib!)
  9. */
  10.  
  11. typedef struct Pool
  12. {
  13.   struct MinList PuddleList;
  14.   ULONG MemoryFlags;
  15.   ULONG PuddleSize;
  16.   ULONG ThreshSize;
  17. } POOL;
  18.  
  19. extern struct ExecBase *SysBase;
  20.